home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / zapem-0.000 / zapem-0 / zapem / point.h < prev    next >
C/C++ Source or Header  |  1995-05-06  |  82b  |  12 lines

  1. #ifndef POINT_H
  2. #define POINT_H
  3.  
  4. class point
  5. {
  6. public:
  7.     int x;
  8.     int y;
  9. };
  10.  
  11. #endif
  12.